HelpPath{Create}CommandName{createRadioButton}ReturnValue{int handle=}OpenBrace{(}Parameters{int x, int y, int width, int height, str caption, handle parent}CloseBrace{)}Description{Creates a radiobutton.  Radiobuttons are similar to checkboxes except that instead of only having on/off options to choose from, the user selects one radiobutton from a group of radiobuttons.  Only one radiobutton from a group can be selected at once.  Radiobuttons belong to the same group if they have the same parent gadget.}ReturnDescription{Handle to the new gadget.}Param1{x}Param1Desc{X position of new gadget}Param2{y}Param2Desc{Y position of new gadget}Param3{width}Param3Desc{Width of new gadget in pixels}Param4{height}Param4Desc{Height of new gadget in pixels}Param5{caption}Param5Desc{The text which appears next to the radiobutton.}Param6{}Param6Desc{}Remarks{You must not use a frame gadget as the parent for a radiobutton, this may cause drawing errors under Windows XP.  Instead, either create the radiobutton as a sibling of the frame (ie. the frame and radiobutton have the same parent), or create a panel inside the frame, and place the radiobutton inside the panel.}Param7{parent}Param7Desc{Handle to the parent of the new gadget, or 0 for the main window}ExampleSource{}SeeAlso{}